home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / actform / frmmain.frm (.txt) < prev    next >
Visual Basic Form  |  1999-05-21  |  1KB  |  39 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMain 
  3.    Caption         =   "Demo - Main Form"
  4.    ClientHeight    =   3525
  5.    ClientLeft      =   105
  6.    ClientTop       =   390
  7.    ClientWidth     =   4815
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3525
  10.    ScaleWidth      =   4815
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton cmdStretch 
  13.       Caption         =   "Demo Stretch Mode"
  14.       Height          =   495
  15.       Left            =   1080
  16.       TabIndex        =   1
  17.       Top             =   2040
  18.       Width           =   2175
  19.    End
  20.    Begin VB.CommandButton cmdAnchor 
  21.       Caption         =   "Demo Anchor Mode"
  22.       Height          =   495
  23.       Left            =   1080
  24.       TabIndex        =   0
  25.       Top             =   1080
  26.       Width           =   2175
  27.    End
  28. Attribute VB_Name = "frmMain"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Private Sub cmdAnchor_Click()
  34. frmTab.Show 0
  35. End Sub
  36. Private Sub cmdStretch_Click()
  37. frmStretch.Show 0
  38. End Sub
  39.